HcSingleCarePlanPage

Print
Visualforce Page Details
Name HcSingleCarePlanPage
Label HcSingleCarePlanPage
Namespace Prefix HealthCloudGA
Api Version 60
Markup <!-- * Copyright © 2015 salesforce.com, inc. All rights reserved. * @copyright This document contains proprietary and confidential information and shall not be reproduced, * transferred, or disclosed to others, without the prior written consent of Salesforce. * @description HcSingleCarePlanPage visualforce page, LighiningOut container for HcSingleCarePlan * @since 198.1 --> <apex:page standardStylesheets="false" docType="html-5.0" showHeader="false" sidebar="false" readOnly="true" showChat="false" applyHtmlTag="false" applyBodyTag="false" wizard="false" cache="true" > <c:HcCommonIncludes includeHealthCloud="true" setTabLink="true"/> <html> <c:HcSpinnerComponent spinnerContainerId="spinnerDiv"/> <div id="lightningout-careplan" /> </html> <script> var patientId = healthCloud.getUrlQueryParameter('recId'); var carePlanId = healthCloud.getUrlQueryParameter('carePlanId'); $Lightning.use("HealthCloudGA:HcMultipleCarePlanApp", function() { $Lightning.createComponent("HealthCloudGA:HcSingleCarePlan", { patientId: patientId, carePlanId: carePlanId, shownInAlohaConsole: true }, "lightningout-careplan"); document.getElementById("spinnerDiv").className = "slds-hidden"; }); </script> </apex:page>